From 0b14a434ac9ca5afd6e40e478f8c04112605979d Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Thu, 25 May 2006 13:46:13 +0000 Subject: [PATCH] Fix #6082: id for the form element --- includes/SpecialUndelete.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialUndelete.php b/includes/SpecialUndelete.php index 12cc45d550..6e5bb175b8 100644 --- a/includes/SpecialUndelete.php +++ b/includes/SpecialUndelete.php @@ -479,7 +479,7 @@ class UndeleteForm { $titleObj = Title::makeTitle( NS_SPECIAL, "Undelete" ); $action = $titleObj->getLocalURL( "action=submit" ); # Start the form here - $top = wfOpenElement( 'form', array( 'method' => 'post', 'action' => $action ) ); + $top = wfOpenElement( 'form', array( 'method' => 'post', 'action' => $action, 'id' => 'undelete' ) ); $wgOut->addHtml( $top ); } -- 2.20.1